home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / profile.arc / MAKEFILE next >
Encoding:
Text File  |  1985-11-28  |  512 b   |  19 lines

  1. CLIB=/clibs/c.lib
  2. .o.exe:
  3.     ln $*.o $(CLIB)
  4. all:
  5.     make profile.com
  6.     make regs.com
  7.     make regs.exe
  8.     make tester.com
  9. profile.com : profile.o timer.o
  10.     ln -t -o $*.com $*.o timer.o $(CLIB)
  11. regs.com : regs.o
  12.     ln -o $*.com $*.o $(CLIB)
  13. regs.exe : regs.o
  14.     ln -o $*.exe $*.o $(CLIB)
  15. tester.com : tester.o trick.o
  16.     ln -t -o $*.com $*.o trick.o $(CLIB)
  17. tester.exe : tester.o trick.o
  18.     ln -t -o $*.exe $*.o trick.o $(CLIB)
  19.